home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 52 / Amiga Format AFCD52 (Issue 136, May 2000).iso / -serious- / programming / c / stormamiga_lib-v45_00d / include / ctype_stormamiga.h < prev    next >
C/C++ Source or Header  |  2000-02-28  |  945b  |  45 lines

  1. #ifndef  CTYPE_STORMAMIGA_H
  2. #define  CTYPE_STORMAMIGA_H
  3.  
  4. /*
  5. **    $VER: ctype_stormamiga.h 1.0 (18.09.98)
  6. **             Includes Release 45.00
  7. **
  8. **   Copyright © 1996/2000 by CyberdyneSystems
  9. **
  10. **            written by Matthias Henze
  11. **               All Rights Reserved
  12. */
  13.  
  14. #ifdef __cplusplus
  15.   extern "C" {
  16. #endif
  17.  
  18. /*----- stormamiga-functions -----*/
  19.  
  20. #ifdef STORMAMIGA_DEUTSCH
  21.   #define isalnum     isalnum_d
  22.   #define isalpha     isalpha_d
  23.   #define islower     islower_d
  24.   #define isupper     isupper_d
  25.   #define isprint     isprint_d
  26.   #define ispunct     ispunct_d
  27.   #define tolower     tolower_d
  28.   #define toupper     toupper_d
  29. #endif
  30.  
  31. int   isalnum_d       (int);
  32. int   isalpha_d       (int);
  33. int   islower_d       (int);
  34. int   isprint_d       (int);
  35. int   ispunct_d       (int);
  36. int   isupper_d       (int);
  37. int   tolower_d       (int);
  38. int   toupper_d       (int);
  39.  
  40. #ifdef __cplusplus
  41.   }
  42. #endif
  43.  
  44. #endif  /* CTYPE_STORMAMIGA_H */
  45.